home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / utilit~1 / initbin.zoo / init-bin / etc / rc.loc < prev    next >
Encoding:
Text File  |  1992-11-03  |  407 b   |  24 lines

  1. #!/bin/sh
  2. # This is rc.local.
  3. #
  4. # This file does everything which is local to the current machine.
  5. #
  6.  
  7. /bin/echo -n "starting local daemons:"
  8.  
  9. # Start up the printer daemon.
  10.  
  11. if [ -f /usr/ucb/lpd.ttp ] ; then
  12.     /usr/ucb/lpd > /dev/null 2>&1 &
  13.     /bin/echo -n " printer"
  14. fi
  15.  
  16. /bin/echo "."
  17.  
  18. # Set the TT's console into auto-wrap mode. (Why does the TT start up without
  19. # auto-text-wrap?)
  20.  
  21. /bin/echo -n "v"
  22.  
  23. exit
  24.